Learn R Programming

RandomFields (version 3.0.35)

Internal functions: Internal functions

Description

These functions are internal and should not be used.

Usage

rfGenerateModels(assigning,
 RFpath = "~/R/RF/svn/RandomFields",
 RMmodels.file = paste(RFpath, "R/RMmodels.R", sep="/")
 )
 
checkExamples(exclude = NULL, include=1:length(.fct.list),
               ask=FALSE, echo=TRUE, halt=FALSE, ignore.all = FALSE,
               path="RandomFields", package = "RandomFields",
                          read.rd.files=TRUE)

ScreenDevice(height, width)

FinalizeExample()

Dependencies(install = length(pkgs) == length(c(depends, imports, suggests)) && all(pkgs == c(depends, imports, suggests)), check=TRUE, pkgs = c(depends, imports, suggests), lib.loc ="/usr/local/lib64/R/library")

showManpages(path="/home/schlather/svn/RandomFields/RandomFields/man")

plotWithCircles(data, factor=1.0, xlim=range(data[,1])+c(-maxr,maxr), ylim=range(data[,2])+c(-maxr,maxr), col=1, fill=0, ...)

Arguments

assigning, RFpath, RMmodels.file
internal
exclude, include, ask, echo, halt, ignore.all, path, package, read.rd.files
internal; ignore.all referes to the all export statement in the namespace -- whether this should be ignored. if read.rf.files is TRUE or a path to the Rd files, then the man pages are analysed to
install, check, pkgs, lib.loc
internal
height,width
window sizes
data, factor, xlim, ylim, col, fill, ...
internal

Examples

Run this code
RFoptions(seed=0) ## *ANY* simulation will have the random seed 0; set
##                   RFoptions(seed=NA) to make them all random again

## internal functions: no examples given
\dontrun{ ## OK
## check own examples
checkExamples(ignore.all=TRUE, halt=!TRUE)


### Check the examples of the other packages:
dep.packages <- c( #"DSpat","lgcp", "constrainedKriging", "MarkedPointProcess",
                  "Geneland", "glmmBUGS", 
                  "ProbForecastGOP","geoR",
                  "CompRandFld", ## RFsim does not work in version 2.1.18
                  "fractaldim", "rpanel", "spatstat")
#for (i in dep.packages) library(i, character.only=TRUE)
#for (i in dep.packages) install.packages(i)


not.working <- list()
for (.i in 1:length(dep.packages)) {
  not.working[[.i]] <-
    checkExamples(path=paste("~/TMP/dep.packages", dep.packages[.i], sep="/"),
                   package=dep.packages[.i])
  Print(.i, not.working); repeat{ if (readline()=="e") break}
}

Print(not.working)
}

# for (i in dep.packages) cat(maintainer(i), "\n") 
FinalizeExample()

Run the code above in your browser using DataLab